home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / AmigaTalk_X / system / SMakeFile < prev    next >
Encoding:
Makefile  |  2002-03-13  |  2.6 KB  |  72 lines

  1. # ################################################################
  2. # #               MakeFile for AmigaTalk1.9+  system prelude.    #
  3. # ################################################################
  4. #
  5. SPr    = AmigaTalk:System/
  6. #
  7. PARSE  = AmigaTalk:C/Parse -hex
  8. #
  9. # ---------------------------------------------------------------------
  10. #
  11. System.p: $(SPr)SerialDevice.p $(SPr)Device.p $(SPr)Library.p \
  12.  $(SPr)GamePort.p $(SPr)Timer.p $(SPr)TrackDisk.p $(Spr)ClipBoard.p \
  13.  $(SPr)ParallelDevice.p $(SPr)Narrator.p $(SPr)PrinterDevice.p $(SPr)SafeDos.p \
  14.  $(SPr)UnSafeDos.p $(SPr)DangerousDos.p $(SPr)VeryDangerousDos.p $(SPr)DosFlags.p
  15.    C:Join $(SPr)Narrator.p $(SPr)ParallelDevice.p $(SPr)ClipBoard.p $(SPr)TrackDisk.p $(SPr)Timer.p AS RAM:sys1.p
  16.    C:Join $(SPr)SerialDevice.p $(SPr)Device.p $(SPr)Library.p $(SPr)GamePort.p $(SPr)PrinterDevice.p AS RAM:sys2.p
  17.    C:Join $(SPr)SafeDos.p $(SPr)UnSafeDos.p $(SPr)DangerousDos.p $(SPr)VeryDangerousDos.p $(SPr)DosFlags.p AS RAM:sys3.p
  18.    C:Join   RAM:sys1.p RAM:sys2.p RAM:sys3.p AS $(SPr)System.p
  19.    Delete RAM:Sys1.p RAM:Sys2.p RAM:sys3.p
  20. #
  21. # ---------- Pieces: -----------------------------------------------------
  22. #
  23. $(SPr)Narrator.p: $(SPr)Narrator.st
  24.    $(PARSE)  $(SPr)Narrator.st   >$(SPr)Narrator.p
  25. #
  26. $(SPr)ParallelDevice.p: $(SPr)ParallelDevice.st
  27.    $(PARSE)  $(SPr)ParallelDevice.st   >$(SPr)ParallelDevice.p
  28. #
  29. $(SPr)ClipBoard.p: $(SPr)ClipBoard.st
  30.    $(PARSE)  $(SPr)ClipBoard.st   >$(SPr)ClipBoard.p
  31. #
  32. $(SPr)SerialDevice.p: $(SPr)SerialDevice.st
  33.    $(PARSE)  $(SPr)SerialDevice.st   >$(SPr)SerialDevice.p
  34. #
  35. $(SPr)TrackDisk.p: $(SPr)TrackDisk.st
  36.    $(PARSE)  $(SPr)TrackDisk.st   >$(SPr)TrackDisk.p
  37. #
  38. $(SPr)Timer.p: $(SPr)Timer.st
  39.    $(PARSE)  $(SPr)Timer.st   >$(SPr)Timer.p
  40. #
  41. $(SPr)Library.p: $(SPr)Library.st
  42.    $(PARSE)  $(SPr)Library.st   >$(SPr)Library.p
  43. #
  44. $(SPr)Device.p: $(SPr)Device.st
  45.    $(PARSE)  $(SPr)Device.st   >$(SPr)Device.p
  46. #
  47. $(SPr)GamePort.p: $(SPr)GamePort.st
  48.    $(PARSE)  $(SPr)GamePort.st   >$(SPr)GamePort.p
  49. #
  50. $(SPr)PrinterDevice.p: $(SPr)PrinterDevice.st
  51.    $(PARSE)  $(SPr)PrinterDevice.st   >$(SPr)PrinterDevice.p
  52. #
  53. $(SPr)MsgPort.p: $(SPr)MsgPort.st
  54.    $(PARSE)  $(SPr)MsgPort.st   >$(SPr)MsgPort.p
  55. #
  56. $(SPr)SafeDos.p: $(SPr)SafeDos.st
  57.    $(PARSE)  $(SPr)SafeDos.st   >$(SPr)SafeDos.p
  58. #
  59. $(SPr)UnSafeDos.p: $(SPr)UnSafeDos.st
  60.    $(PARSE)  $(SPr)UnSafeDos.st   >$(SPr)UnSafeDos.p
  61. #
  62. $(SPr)DangerousDos.p: $(SPr)DangerousDos.st
  63.    $(PARSE)  $(SPr)DangerousDos.st   >$(SPr)DangerousDos.p
  64. #
  65. $(SPr)VeryDangerousDos.p: $(SPr)VeryDangerousDos.st
  66.    $(PARSE)  $(SPr)VeryDangerousDos.st   >$(SPr)VeryDangerousDos.p
  67. #
  68. $(SPr)DosFlags.p: $(SPr)DosFlags.st
  69.    $(PARSE)  $(SPr)DosFlags.st   >$(SPr)DosFlags.p
  70. #
  71.  
  72.